home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 05 - 1989 / 05.06 Jun 89 / LOC Source / Test Source / PopMenuIntf.p < prev    next >
Encoding:
Text File  |  1988-07-27  |  603 b   |  28 lines  |  [TEXT/MPS ]

  1. (*****************************************************
  2. PopMenuIntf.p
  3.    This file contains the Pascal interface for the
  4.    constants used in PopUpCDEF.p, and in any other
  5.    program or unit which uses pop-ups.
  6. *****************************************************)
  7.  
  8. UNIT PopMenuIntf;
  9.  
  10. INTERFACE
  11. CONST
  12.     { VARIATION CODE MODIFIERS:    }
  13.     mUnused            =    1;    
  14.     mRes            =    2;
  15.     mCheck            =    4;
  16.     mKey            =    8;
  17.     
  18.     { part codes }
  19.     inPopUpBox        =     1;
  20.     titlePart        =     2;
  21.     
  22.     { MDEF message: get item dimensions }
  23.     mItemRectMsg    =    512;
  24.     
  25.     { MDEF message: draw item in rect }
  26.     mDrawItemMsg    =    513;
  27. IMPLEMENTATION
  28. END.  { PopMenuIntf }